bufio.Reader.lastByte (field)
14 uses
bufio (current package)
bufio.go#L40: lastByte int // last byte read for UnreadByte; -1 means invalid
bufio.go#L91: lastByte: -1,
bufio.go#L148: b.lastByte = -1
bufio.go#L185: b.lastByte = -1
bufio.go#L236: b.lastByte = int(p[n-1])
bufio.go#L260: b.lastByte = int(b.buf[b.r-1])
bufio.go#L277: b.lastByte = int(c)
bufio.go#L287: if b.lastByte < 0 || b.r == 0 && b.w > 0 {
bufio.go#L297: b.buf[b.r] = byte(b.lastByte)
bufio.go#L298: b.lastByte = -1
bufio.go#L316: b.lastByte = int(b.buf[b.r-1])
bufio.go#L330: b.lastByte = -1
bufio.go#L382: b.lastByte = int(line[i])
bufio.go#L516: b.lastByte = -1
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |